(flyspell-get-word): Return string without
authorDave Love <fx@gnu.org>
Fri, 16 Feb 2001 15:04:26 +0000 (15:04 +0000)
committerDave Love <fx@gnu.org>
Fri, 16 Feb 2001 15:04:26 +0000 (15:04 +0000)
properties.

lisp/textmodes/flyspell.el

index b1290c9cb8c81a04ecf776d9a674f0f0108cd329..707315a0232afa8e8625407913b0b46b27947973 100644 (file)
@@ -1221,7 +1221,7 @@ Word syntax described by `ispell-dictionary-alist' (which see)."
       (progn
        (setq start (match-beginning 0)
              end (point)
-             word (buffer-substring start end))
+             word (buffer-substring-no-properties start end))
        (list word start end)))))
 
 ;*---------------------------------------------------------------------*/